home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / printing / nenscrip.000 / nenscrip / nenscript-1.13++ / postscri.h < prev    next >
C/C++ Source or Header  |  1992-10-01  |  1KB  |  38 lines

  1. /*
  2.  * $Id: postscri.h,v 1.2 1992/10/02 01:02:32 craigs Exp $
  3.  *
  4.  *   This code was written by Craig Southeren whilst under contract
  5.  *   to Computer Sciences of Australia, Systems Engineering Division.
  6.  *   It has been kindly released by CSA into the public domain.
  7.  *
  8.  *   Neither CSA or me guarantee that this source code is fit for anything,
  9.  *   so use it at your peril. I don't even work for CSA any more, so
  10.  *   don't bother them about it. If you have any suggestions or comments
  11.  *   (or money, cheques, free trips =8^) !!!!! ) please contact me
  12.  *   care of geoffw@extro.ucc.oz.au
  13.  *
  14.  */
  15.  
  16. #include <stdio.h>
  17.  
  18. #ifdef __STDC__
  19.  
  20. extern void StartJob      (FILE *, char *, int, int, char *, char *, int, int, char *, int, int, int, char *, struct PaperMetrics *, int);
  21. extern void StartDocument (FILE *, char *);
  22. extern void EndColumn     (FILE *);
  23. extern void WriteLine     (FILE *, char *);
  24. extern void EndDocument   (FILE *);
  25. extern void EndJob        (FILE *);
  26.  
  27. #else
  28.  
  29. extern void StartJob      ();
  30. extern void StartDocument ();
  31. extern void EndColumn     ();
  32. extern void WriteLine     ();
  33. extern void EndDocument   ();
  34. extern void EndJob        ();
  35.  
  36. #endif
  37.  
  38.